home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / lang / LSLComp.lha / LSLComp.readme < prev    next >
Encoding:
Text File  |  1980-01-29  |  941 b   |  53 lines

  1. Short: New language experiment (balrog Soft)
  2. Uploader: Pedro Gil (Balrog Soft) balrog@teleline.es
  3. Author: Pedro Gil (Balrog Soft) balrog@teleline.es
  4. Type:     dev/lang
  5.  
  6. LSL Compiler version 0.001ß
  7.  
  8.     This is a litle program that compile a simple language with 6 commands
  9.  I want to make a new Basic Language, and this is and example.
  10.  
  11.     PROGRAM means the name of the compiled program
  12.  
  13.     VAR c: INTEGER means define a variable c such as integer
  14.  
  15.     BEGIN means the start of the program
  16.  
  17.     c=4 puts 4 the variable
  18.  
  19.     WRITELN c  means write the variable c
  20.  
  21.     END end of the program
  22.  
  23.  
  24.  
  25.     This is the example:
  26.  
  27.  
  28.  
  29. PROGRAM PruebaLSL
  30.  
  31. VAR c: INTEGER
  32.  
  33. BEGIN
  34.  
  35.   c=4
  36.   WRITELN c
  37.  
  38. END
  39.  
  40.  
  41.     How to use:
  42.  
  43.         Write in CLI this: LSLComp example.lsl
  44.  
  45.     And a litle program call PruebaLSL will be created.
  46.  
  47.  
  48.     If you are interesting in this program write to
  49.  
  50.         balrog@teleline.es
  51.  
  52.     WWW: http://members.tripod.com/~balrogsoft
  53.